Skip to main content link. Accesskey S
  • Help
  • HCL Logo
  • HCL Sametime wiki
  • THIS WIKI IS READ-ONLY. Individual names altered for privacy purposes.
  • HCL forums and blogs
  • Home
  • Product Documentation
  • Community Articles
  • Learning Center
Search
Community Articles > Sametime Advanced > Sametime Advanced troubleshooting > Troubleshooting WebSphere Application Server issues in Sametime Advanced 8
  • Share Show Menu▼
  • Subscribe Show Menu▼

Recent articles by this author

Managing policies for Lotus Sametime Classic 8.5.x

All Sametime users are automatically assigned to a default policy. You can create non-default user policies, and assign users and groups to these policies.

Managing policies for Lotus Sametime Classic 8.5.x

All Sametime users are automatically assigned to a default policy. You can create non-default user policies, and assign users and groups to these policies.

Best Practices for DB2 maintenance in Sametime

IBM Lotus Sametime uses DB2 databases. Most of the maintenance for DB2 has been automated, and database backup and recovery is fully outlined in the DB2 information center. See "Developing a backup and recovery strategy" at http:publib.boulder.ibm.cominfocenterdb2luwv9index.jsp. IBM ...

Developer resources for Lotus Sametime Standard 8.5 & 8.5.1

This page provides resources for developers, including demonstrations, product documentation, and education offerings. You can add your own links to this page too. The wiki monitor will integrate your links into the page as appropriate. Add a link

Monitoring availability, performance, infrastructure, and beyond using IBM Lotus Sametime

Ever wonder how to know what the status of your IBM Lotus Sametime environment is?  Discover how Lotus Sametime can be monitored from the user perspective.  This article describes (and provides) a simple lightweight tool to assist administrators in better understanding the Lotus Sametime user ...
Community articleTroubleshooting WebSphere Application Server issues in Sametime Advanced 8
Added by ~Dana Dwonusonakoi | Edited by ~Denise Ekresaplopoden on July 17, 2011 | Version 19
  • Actions Show Menu▼
expanded Abstract
collapsed Abstract
No abstract provided.
Tags: troubleshooting
ShowTable of Contents
HideTable of Contents
  • 1 How to look for CPU heap issues for WAS
  • 2 How to turn on tracing
  • 3 How to turn on Performance Monitoring Infrastructure PMI
  • 4 Adding WebSphere Application Servver as a Windows service
  • 5 Using the WebSphere Application Servver information center
Where to look for errors (SystemOut, SystemErr, ffdc)
Logging/tracing usually found in /WebSphere/AppServer/profiles/profile_name/logs/. See Logging and tracing at the Info Center.

Server logs:
Look in system error logs, found in /WebSphere/AppServer/profiles/profile_name/logs/server1/SystemErr.log
Look in system out logs, found in /WebSphere/AppServer/profiles/profile_name/logs/server1/SystemOut.log
ffdc logs:
Look in ffdc logs, found in /WebSphere/AppServer/profiles/profile_name/logs/ffdc

How to look for CPU heap issues for WAS



To dump the javacore and/or heapdump on WebSphere:

(start the wsadmin console... you'll be prompted for login/pwd credentials...)
cd \ProgramFiles\IBM\WebSphere\AppServer\bin
wsadmin

(setup for the DUMPS... specifying application server to dump...)
wsadmin> set jvm [$AdminControl completeObjectName type=JVM,process=server1,*]

(when ready to dump... execute the following to get a javacore file...)
wsadmin> $AdminControl invoke $jvm dumpThreads

OR

(when ready to dump... execute the following to get a heapdump file...)
wsadmin> $AdminControl invoke $jvm generateHeapDump

javacore/heapdump file will be in the following directory:
\ProgramFiles\IBM\WebSphere\AppServer\profiles\ST_Advanced_Profile


How to monitor CPU for WebSphere Application Servver
See How to monitor CPU for EB.

How to turn on tracing


You can find on the following page Setting a diagnostic trace on a serverexternal link how to turn on tracing for the following:
  • How to turn on logging when looking for persistent chat errors
  • How to turn on logging when looking for vmm/ldap errors
  • How to turn on logging when looking for skilltap errors

How to turn on logging when looking for db errors:
Choose this detail level com.ibm.workplace.db.persist.

How to turn on tracing for vmm issues
To look for issues with ldap we will need to enabled wmm tracing. In the admin console, turn on tracing for "com.ibm.websphere.wim.=all:com.ibm.ws.wim.=all:com.ibm.wsspi.wim.*=all" at level FINEST. You should then see a trace.log file (where system.out and system.err live) with this tracing inside.

How to turn on Performance Monitoring Infrastructure PMI


Something to read before setting up:

This is a good page for reading on what to monitor when using PMI Monitoring overall system healthexternal link

Setting it up:
  1. In WebSphere ISC Console, go to Monitoring and Tuning - Performance Monitoring Infrastructure (PMI).
  2. Click server1.
  3. Enable either "Basic" monitoring or "Custom".

Basic monitoring should provide us with the 3 things we are interested in:
  • Number of DB Connections
  • Number of JMS Connections
  • Number of HTTP Sessions

If you are going to do "Custom" monitoring, enable the following statistics to get # of DB/JMS/HTTP connections/sessions: JDBC Connection Pools.CreateCount, JCA Connection Pools.CreateCount, Servlet Session Manager.LiveCount.

Once PMI is enabled you can look at the "Current Activity. To do this:
  1. In WebSphere ISC Console, go to Monitoring and Tuning - Performance Monitoring Infrastructure (PMI).
  2. Click Performance Viewer.
  3. Click Current Activity.
  4. Click server1.

From here on you can click on Summary Reports or Performance Modules which is more fine-grained. In Performance Modules, you can select the 3 statistics we are interested in. The picture below shows how to expand the trees and select the appropriate statistics.




Besides looking at Current Activity, you can View Logs. This option should be in the same location as Current Activity. Click View Logs and browse to the Server File where the PMI logs are saved. This location is usually: WAS\AppServer\profiles\AppSrv01\logs\tpv\

Adding WebSphere Application Servver as a Windows service



1. Modify IBM\was\AppServer\profiles\ST_Advanced_Profile\properties\soap.client.props file so you can stop Lotus Sametime Advanced with specifying a user name and passord. For example:


#------------------------------------------------------------------------------
# SOAP Client Security Enablement
#
# - security enabled status  ( false[default], true  )
#------------------------------------------------------------------------------ 
com.ibm.SOAP.securityEnabled=true  
com.ibm.SOAP.loginUserid=wasadmin 
com.ibm.SOAP.loginPassword=mypassword
#------------------------------------------------------------------------------


2. Configure WebSphere Application Servver to start as a service. User ID must have local security rights. Use the following syntax:


WASService.exe -add "service_name"
               -serverName server
               -profilePath server_profile_directory

For example:
D:\IBM\WAS\AppServer\bin\WASService -add "SametimeAdvanced" -serverName server1
   -profilePath "d:\ibm\was\AppServer\profiles\ST_Advanced_Profile"
   -startType automatic


3. Go to Click Start - Control Panel - Double-click Administrative Tools - Double-click Services. You should see IBM WebSphere Application Server V6.1 - node-name. which is the windows service you just created.

Note: To remove the service, type WASService.exe -remove"service_name" from WAS\bin\. See Starting servers automaticallyexternal link for more info.


Using the WebSphere Application Servver information center


Monitoring overall system healthexternal link
Enabling PMI data collectionexternal link
Viewing current performance activityexternal link
Configuring WebSphere Application Server for use with HTTP Serverexternal link
Starting and stopping Lotus Sametime Advanced and WebSphere Application Serverexternal link
Updating your WebSphere Application Servver administrators passwordexternal link
Tuning a WebSphere Application Servver serverexternal link
Troubleshooting a failed WebSphere Application Servver startupexternal link
Troubleshooting authenticationexternal link

  • Actions Show Menu▼


expanded Attachments (0)
collapsed Attachments (0)
Edit the article to add or modify attachments.
expanded Versions (19)
collapsed Versions (19)
Version Comparison     
VersionDateChanged by              Summary of changes
This version (19)Jul 17, 2011, 11:29:00 PM~Denise Ekresaplopoden  
18Jan 11, 2010, 4:31:36 PM~Keiko Ektumisonlen  IBM contributor
17Jan 11, 2010, 4:29:30 PM~Keiko Ektumisonlen  IBM contributor
16Jan 11, 2010, 4:28:10 PM~Keiko Ektumisonlen  IBM contributor
15Jan 11, 2010, 4:25:42 PM~Keiko Ektumisonlen  IBM contributor
14Jan 11, 2010, 2:04:59 PM~Keiko Ektumisonlen  IBM contributor
13Jan 10, 2010, 9:32:57 PM~Keiko Ektumisonlen  IBM contributor
12Jan 10, 2010, 9:03:58 PM~Keiko Ektumisonlen  IBM contributor
11Jan 10, 2010, 9:03:01 PM~Keiko Ektumisonlen  IBM contributor
10Jan 8, 2010, 9:51:28 PM~Keiko Ektumisonlen  IBM contributor
9Jan 8, 2010, 9:50:14 PM~Keiko Ektumisonlen  IBM contributor
8Jan 8, 2010, 9:45:09 PM~Keiko Ektumisonlen  IBM contributor
7Jan 8, 2010, 9:36:26 PM~Keiko Ektumisonlen  IBM contributor
6Jan 8, 2010, 8:26:45 PM~Keiko Ektumisonlen  IBM contributor
5Jan 8, 2010, 8:05:40 PM~Keiko Ektumisonlen  IBM contributor
4Jan 8, 2010, 7:55:09 PM~Keiko Ektumisonlen  IBM contributor
3Jan 8, 2010, 7:37:19 PM~Keiko Ektumisonlen  IBM contributor
2Jan 8, 2010, 7:23:31 PM~Keiko Ektumisonlen  IBM contributor
1Jan 8, 2010, 7:14:55 PM~Wendy Asakiverettu  
expanded Comments (0)
collapsed Comments (0)
Copy and paste this wiki markup to link to this article from another article in this wiki.
Go ElsewhereStay ConnectedAbout
  • HCL Software
  • HCL Digital Solutions community
  • HCL Software Support
  • BlogsDigital Solutions blog
  • Community LinkHCL Software forums and blogs
  • About HCL Software
  • Privacy
  • Accessibility